home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Life 1995 December
/
Computer Life December 1995.iso
/
tapcis
/
makedoc.bat
< prev
next >
Wrap
DOS Batch File
|
1995-08-13
|
2KB
|
48 lines
REM MAKEDOC.BAT -- Version 1.10 August 11, 1995
@ECHO OFF
CLS
IF "%1"=="DEL" GOTO DEL
IF "%1"=="del" GOTO DEL
IF "%1"=="Del" GOTO DEL
ECHO This batch file will make ONE file called TAPCIS6.DOC out
ECHO of all the separate docs. You can then use the command
ECHO MAKEDOC DEL to delete the individual documentation files.
ECHO ...
ECHO To combine the files now, press [Enter]. To leave them as
ECHO individual files, press [Ctrl+C] and answer "Y".
ECHO ...
pause
COPY TITLE.DOC+QKSTART.DOC+OVERVIEW.DOC+MAINMENU.DOC+READING.DOC TAPCIS6.DOC
COPY TAPCIS6.DOC+MARKING.DOC+WRITING.DOC+LIBRARY.DOC+OTHER.DOC TAPCIS6.DOC
COPY TAPCIS6.DOC+CONNECT.DOC+SETUP.DOC+INDEX.DOC TAPCIS6.DOC
CLS
ECHO You can now print TAPCIS6.DOC. To delete the individual files,
ECHO use the command MAKEDOC DEL from DOS.
GOTO Done
:DEL
ECHO This command will delete the individual TAPCIS6 documentation files.
ECHO If you did not wish to do this, press [Ctrl+C] now. To confirm the
ECHO deletion of these DOC files, press [Enter].
ECHO ...
PAUSE
DEL TITLE.DOC
DEL QKSTART.DOC
DEL OVERVIEW.DOC
DEL MAINMENU.DOC
DEL READING.DOC
DEL MARKING.DOC
DEL WRITING.DOC
DEL LIBRARY.DOC
DEL OTHER.DOC
DEL CONNECT.DOC
DEL SETUP.DOC
DEL INDEX.DOC
CLS
ECHO The individual TAPCIS6 documentation files have been deleted. You
ECHO may DEL MAKEDOC.BAT to complete the clean-up. The TAPCIS6.DOC file,
ECHO if it exists, was not deleted.
GOTO DONE
:Done